    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: hsl(0, 0%, 100%);
        justify-content:center;
      


    }

    nav {
      position: sticky;
      top: 0px;
      z-index: 1000;
      max-width: 1520px;
      margin: 30px auto;
      padding: 1.2rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
      border: 1px solid #a1a1a1;
    }

    .logo {
      font-size: 1.7rem;
      font-weight: bold;
      color: #2c3e50;
    }

    .nav-center {
      display: flex;
      gap: 2rem;
    }

    .nav-center a {
      position: relative;
      text-decoration: none;
      color: #2c3e50;
      font-weight: 500;
      font-size: 15px;
      padding: 6px 0;
      transition: color 0.3s ease;
    }

    .nav-center a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0%;
      height: 2px;
      background-color: #4a74ff;
      transition: width 0.3s ease;
    }

    .nav-center a:hover::after {
      width: 100%;
    }

    /* ✅ Right Side Rounded Button */
    .nav-right a {
      text-decoration: none;
      background: #4a74ff;
      color: #fff;
      padding: 10px 22px;
      border-radius: 50px;
      font-weight: 500;
      font-size: 15px;
      box-shadow: 0 4px 12px rgba(74, 116, 255, 0.3);
      transition: all 0.3s ease;
    }

    .nav-right a:hover {
      background: #355de0;
      transform: translateY(-1px);
    }
        /* ─── Search Bar ───────────────────────────── */
    .search-box{
        position:relative;
        display:flex;
        align-items:center;
    }
    .search-box input{
      width:200px;
      max-width:60vw;
      padding:9px 40px 9px 16px;
      border:1px solid #bfc9ff;
      border-radius:50px;
      font-size:14px;
      transition:all .3s ease;
    }
    .search-box input::placeholder{
        color:#9aa2d4;
    }
    .search-box input:focus{
      outline:none;border-color:#4a74ff;
      box-shadow:0 0 0 3px rgba(74,116,255,.25);
    }
    /* search icon */
    .search-box::after{
      content:'🔍'; /* simple emoji icon */
      position:absolute;right:14px;pointer-events:none;
      font-size:16px;color:#6d7be9;
    }


    @media (max-width: 768px) {
      nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 25px;
      }

      .nav-center {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
      }

      .nav-right a {
        width: 100%;
        text-align: center;
      }
     .search-box input{width:100%;}

    }
    .back-link{
  position:absolute;
  top:160px;
  right:220px;
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  font-size:.95rem;
  color:#333;
  text-decoration:none;
  transition:transform .25s ease;
}
.back-link:hover{transform:translateX(4px)}
.back-link img{width:35px;height:35px;display:block}




    .form-wrapper {
      max-width: 1100px;
      margin: 50px auto;
            background: linear-gradient(to right, #ffffff, #56b1fc);

      padding: 30px 40px;
      border-radius: 12px;
      border: 3px solid;
      border-image: linear-gradient(to right, #ffffff, #ffffff) 1;
      box-shadow: 0 0 20px rgba(0,0,0,0.05);
      animation: slideIn 0.8s ease;
      margin-top: 120px;
    }

    @keyframes slideIn {
      0% {opacity: 0; transform: translateY(-30px);}
      100% {opacity: 1; transform: translateY(0);}
    }

    form label {
      font-weight: 600;
      margin-bottom: 5px;
      display: block;
      font-size: 14px;
      color: #333;
    }

    form input,
    form select {
      width: 100%;
      padding: 10px;
      border-radius: 6px;
      border: 2px solid #6795fe;
      margin-bottom: 15px;
      transition: all 0.3s ease;
    }

    form input:focus,
    form select:focus {
      border-image: linear-gradient(to right, #79b1fa, #fdfeff) 1;
      outline: none;
      box-shadow: 0 0 5px rgba(226, 226, 228, 0.3);
    }

    .row {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .row > div {
      flex: 1;
      min-width: 250px;
    }

    .single-row {
      margin-bottom: 20px;
    }

    .btn-row {
      margin-top: 30px;
      display: flex;
      gap: 20px;
      justify-content: flex-end;
    }

    .btn {
      padding: 12px 25px;
      font-size: 15px;
      border: none;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      color: white;
      transition: 0.3s;
    }

    .btn-primary {
      background: linear-gradient(to right, #ff416c, #ff4b2b);
    }

    .btn-primary:hover {
      opacity: 0.85;
    }

    .btn-secondary {
      background: linear-gradient(to right, #1dd1a1, #10ac84);
    }

    .btn-secondary:hover {
      opacity: 0.85;
    }
